home *** CD-ROM | disk | FTP | other *** search
/ Best of Blender - The Int…e Entertainment Magazine / The Best of Blender Magazine.ISO / pc / blender / files / robot.dir / 00010.ls < prev    next >
Encoding:
Text File  |  1996-05-01  |  537 b   |  24 lines

  1. on exitFrame
  2.   repeat with n = 19 down to 16
  3.     if rollOver(n) then
  4.       set the visible of sprite (n + 25) to 1
  5.       next repeat
  6.     end if
  7.     set the visible of sprite (n + 25) to 0
  8.   end repeat
  9.   if the visible of sprite 35 = 1 then
  10.     set the visible of sprite 41 to 0
  11.   end if
  12.   repeat with n = 27 down to 21
  13.     if rollOver(n) then
  14.       puppetSprite(n, 1)
  15.       set the ink of sprite n to 4
  16.       next repeat
  17.     end if
  18.     set the ink of sprite n to 8
  19.     puppetSprite(n, 0)
  20.   end repeat
  21.   go(the frame)
  22.   updateStage()
  23. end
  24.